home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / person / den0193.zip / DEN.BAT < prev    next >
DOS Batch File  |  1992-10-27  |  1KB  |  67 lines

  1. @ECHO OFF
  2. REM  This is a wonderful new news program that everyone in their right mind
  3. REM  needs!  Get this file!!!
  4. CLS
  5. premen.com
  6. locate 22,10
  7. echo Hit any key
  8. pause >nul
  9. :start
  10. REM  Call the main menu
  11. menu.com
  12. REM Locates cursor on the screen
  13. locate 21,40
  14. REM  Uses GETNUM.exe to get command from user
  15. :enternum
  16. GETNUM
  17. if errorlevel == 10 goto error
  18. if errorlevel == 9 goto exit
  19. if errorlevel == 8 goto info
  20. if errorlevel == 7 goto ads
  21. if errorlevel == 6 goto guest
  22. if errorlevel == 5 goto inter
  23. if errorlevel == 4 goto comp
  24. if errorlevel == 3 goto sports
  25. if errorlevel == 2 goto letters
  26. if errorlevel == 1 goto editor
  27. goto enternum
  28. :error
  29. locate 22,20
  30. ECHO  That is not a valid choice!  (Hit any key)
  31. pause > nul
  32. goto start
  33. :info
  34. eight.com
  35. goto start
  36. :ads
  37. seven.com
  38. goto start
  39. :guest
  40. six.com
  41. goto start
  42. :inter
  43. five.com
  44. goto start
  45. :comp
  46. comnews.com
  47. pause > nul
  48. four.com
  49. goto start
  50. :sports
  51. three.com
  52. goto start
  53. :letters
  54. mail.com
  55. pause > nul
  56. two.com
  57. goto start
  58. :editor
  59. editor.com
  60. pause > nul
  61. one.com
  62. goto start
  63. :exit
  64. end.com
  65. pause > nul
  66.  
  67.